curl コマンド
Real World HTTP ミニ版 を読んでいる。
curl 公式 https://curl.haxx.se/
出た〜〜〜🎉
https://gyazo.com/df38c475fe9c1bef2247325c7d94c5b8
https://gyazo.com/23320c9da24aaac8f452b6e0b3f1c62c
1.4.1 ヘッダーの送信
https://gyazo.com/19a627bef1537bfe50ee3961a2a21077
$ curl -v --http1.0 -H "X-Test: hello" http://localhost:18888
複数もいける
$ curl -v --http1.0 -H "X-Test: hello, hoge, fuga" http://localhost:18888
X-Test: hello, hoge, fuga
1.8 ボディ
$ curl -v --http1.0 -d "{\"Hello\": \"World\"}" -H "Content-Type: application/json" http://localhost:18888
https://gyazo.com/1d01a59a804c76a58d5521bc27f7e5d2
-vつけると詳細も出力される
本だとあったりなかったりしている
https://curl.haxx.se/docs/manpage.html#-v
-d
https://curl.haxx.se/docs/manpage.html#-d